diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-25 07:51:15 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-25 07:51:15 +0000 |
| commit | 2650b7c0bb0ea12b68a58c0439f72d61df04b2f1 (patch) | |
| tree | 17156183fd74b69d78178065388ac61a18ac07b4 /app/[lng]/evcp | |
| parent | d32acea05915bd6c1ed4b95e56c41ef9204347bc (diff) | |
(대표님) 정기평가 대상, 미들웨어 수정, nextauth 토큰 처리 개선, GTC 등
(최겸) 기술영업
Diffstat (limited to 'app/[lng]/evcp')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx | 5 | ||||
| -rw-r--r-- | app/[lng]/evcp/(evcp)/tech-vendor-possible-items/page.tsx | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx b/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx index 886d061d..325037d8 100644 --- a/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx +++ b/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx @@ -10,6 +10,9 @@ import { getEvaluationTargets } from "@/lib/evaluation-target-list/service" import { InformationButton } from "@/components/information/information-button" import { EvaluationTargetsTable } from "@/lib/evaluation-target-list/table/evaluation-target-table" +export const dynamic = 'force-dynamic' +export const revalidate = 0 + export const metadata: Metadata = { title: "협력업체 평가 대상 관리", description: "협력업체 평가 대상을 확정하고 담당자를 지정합니다.", @@ -50,7 +53,7 @@ export default async function EvaluationTargetsPage(props: EvaluationTargetsPage {/* Main Table */} <React.Suspense - key={`evaluation-targets-${search.page}-${JSON.stringify(search.filters)}-${search.joinOperator}-${search.search || 'no-search'}`} + // key={`evaluation-targets-${search.page}-${JSON.stringify(search.filters)}-${search.joinOperator}-${search.search || 'no-search'}`} fallback={ <DataTableSkeleton columnCount={12} diff --git a/app/[lng]/evcp/(evcp)/tech-vendor-possible-items/page.tsx b/app/[lng]/evcp/(evcp)/tech-vendor-possible-items/page.tsx index 00192d85..51ff6003 100644 --- a/app/[lng]/evcp/(evcp)/tech-vendor-possible-items/page.tsx +++ b/app/[lng]/evcp/(evcp)/tech-vendor-possible-items/page.tsx @@ -6,7 +6,7 @@ import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" import { Shell } from "@/components/shell"
import { searchParamsTechVendorPossibleItemsCache } from "@/lib/tech-vendor-possible-items/validations"
-import { getTechVendorPossibleItems, getUniqueTechVendorTypes } from "@/lib/tech-vendor-possible-items/service"
+import { getTechVendorPossibleItems } from "@/lib/tech-vendor-possible-items/service"
import { PossibleItemsDataTable } from "@/lib/tech-vendor-possible-items/table/possible-items-data-table"
import { TechVendorPossibleItemsContainer } from "@/components/tech-vendor-possible-items/tech-vendor-possible-items-container"
@@ -31,9 +31,9 @@ export default async function TechVendorPossibleItemsPage(props: TechVendorPossi const promises = Promise.all([
getTechVendorPossibleItems({
...search,
- filters: validFilters,
+ filters: validFilters as any,
}),
- getUniqueTechVendorTypes(),
+ // getUniqueTechVendorTypes(),
])
return (
|
